home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-04 | 462 b | 21 lines | [TEXT/KAHL] |
- /* this program puts up a dialog asking the user to select
- a directory, then recursively scans the contents of the directory
- to build a list of all files and directories contained in it
- */
-
- #include "CPPTreeApp.h"
-
- extern CPPApplication *gApplication;
-
- void main (void)
- {
- gApplication = new CPPTreeApp ();
-
- if (gApplication)
- {
- gApplication->Initialize ();
- gApplication->Go ();
- gApplication->ShutDown ();
- delete gApplication;
- }
- }